home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / Sessions / Traut / ZStrings / Source / MacOS / GraphicalTool / DebugPrefix.pch++ < prev    next >
Encoding:
Text File  |  2001-06-23  |  1.3 KB  |  44 lines

  1. /*==================================================================
  2.     File:        DebugPrefix.pch++
  3.  
  4.     Contains:    Source for precompiled header for PowerPlant headers
  5.  
  6.     Written by:    Eric Traut
  7.  
  8.     Copyright:    2000-2001 Connectix Corporation
  9.     
  10.     This source has been placed into the public domain by
  11.     Connectix Corporation. You have the right to modify, 
  12.     distribute or use this code without any legal limitations
  13.     or finanicial/licensing requirements. Connectix is not 
  14.     liable for any problems that result from the use of this 
  15.     code.
  16.     
  17.     If you have comments, feedback, questions, or would like
  18.     to submit bug fixes or updates to this code, please email
  19.     opensource@connectix.com.
  20. ==================================================================*/
  21.  
  22. //    This file #includes most header files for the PowerPlant library,
  23. //    as well as most of the Toolbox headers used by the PowerPlant library
  24. //    with all debugging symbols defined.
  25.  
  26. // This same file works for PowerPC and 68K. We check the target
  27. // at compile time and specify the appropriate output file name.
  28.     
  29. #if __POWERPC__
  30.     #pragma precompile_target "DebugPrefixHeadersPPC++"
  31. #else
  32.     #pragma precompile_target "DebugPrefixHeaders68K++"
  33. #endif
  34.  
  35. #pragma once on
  36.  
  37.     // Bring in common settings
  38. #include "PrefixCommon.h"
  39.  
  40.     // Bring in PP headers. In this case, also activate debugging information
  41. #include <PP_DebugHeaders.cp>
  42.  
  43.  
  44.